home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_WordDocGetCollection.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
442b
|
11 lines
; *******************************************************
; Example 1 - Create a word window with a new blank document,
; add a second blank document, and get a collection of the documents.
; *******************************************************
;
#include <Word.au3>
$oWordApp = _WordCreate ()
_WordDocAdd ($oWordApp)
$oDocuments = _WordDocGetCollection ($oWordApp)
MsgBox(0, "Document Count", @extended)
_WordQuit ($oWordApp)